Update README.md

Andrew Cantino 10 years ago
parent
commit
ee17c20420
1 changed files with 2 additions and 0 deletions
  1. 2 0
      README.md

+ 2 - 0
README.md

@@ -51,8 +51,10 @@ If you just want to play around, you can simply clone this repository, then perf
51 51
 * Copy `.env.example` to `.env` (`cp .env.example .env`) and edit `.env`, at least updating the `APP_SECRET_TOKEN` variable.
52 52
 * Run `rake db:create`, `rake db:migrate`, and then `rake db:seed` to create a development MySQL database with some example Agents.
53 53
 * Run `foreman start`, visit [http://localhost:3000/][localhost], and login with the username of `admin` and the password of `password`.
54
+* Run `git remote add upstream https://github.com/cantino/huginn.git`
54 55
 * Setup some Agents!
55 56
 * Read the [wiki][wiki] for usage examples and to get started making new Agents.
57
+* Periodically run `git fetch upstream` and then `git checkout master && git merge upstream/master` to merge in the newest version of Huginn.
56 58
 
57 59
 Note: by default, emails are not sent in the `development` Rails environment, which is what you just setup.  If you'd like to enable emails when playing with Huginn locally, edit `config.action_mailer.perform_deliveries` in `config/environments/development.rb`.
58 60